home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ict280-d.zip / RESET.BAT < prev   
DOS Batch File  |  1992-08-11  |  567b  |  21 lines

  1. cls
  2. echo off
  3. if not exist dial.new goto error
  4. if not exist dial.cfg goto error
  5. echo  
  6. echo ╔══════════════════════════════════════════════════════════════════╗
  7. echo ║ Press Enter to reset the ON-LINE program to its default state or ║
  8. echo ║ press Ctrl+C (hold down the Ctrl key and press C) to cancel.     ║
  9. echo ╚══════════════════════════════════════════════════════════════════╝
  10. echo  
  11. pause
  12. copy dial.new dial.cfg
  13. goto done
  14. :error
  15. echo  
  16. echo *** ERROR ***
  17. echo  
  18. echo Either DIAL.NEW or DIAL.CFG is missing, cannot reset ON-LINE
  19. echo  
  20. :done
  21.